home *** CD-ROM | disk | FTP | other *** search
/ Revolution - Das Atari CD Magazin 1997 / Revolution - Das Atari CD Magazin 1.iso / software / anwendng / qed_397 / sourcen / debug.h < prev    next >
C/C++ Source or Header  |  1997-01-14  |  408b  |  22 lines

  1. #ifndef _qed_debug_h_
  2. #define _qed_debug_h_
  3.  
  4.  
  5. /* Möglichkeiten: Con, TCON, DBW, Datei, Modem1, Modem2, Seriell1, Seriell2, Prn */
  6.  
  7. /*#define DEBUG Con*/
  8. /*#define DEBUG TCON*/
  9. /*#define DEBUG Datei*/
  10. #undef DEBUG
  11.  
  12. #ifdef DEBUG
  13. #include "..\cflib\debug.h"
  14. #if DEBUG == Datei
  15. #define DEBUGFILE "i:\\qed-debug.log"
  16. #else
  17. #define DEBUGFILE NULL
  18. #endif /* Datei */
  19. #endif /* DEBUG */
  20.  
  21. #endif
  22.